diff options
| author | Ariel Costas Guerrero <ariel@costas.dev> | 2025-06-05 20:03:27 +0200 |
|---|---|---|
| committer | Ariel Costas Guerrero <ariel@costas.dev> | 2025-06-05 20:03:27 +0200 |
| commit | a2830a0dd6f634147456406c7855881ff298078e (patch) | |
| tree | 93af1b60258b0b19a739b294fa31f201c2d64158 /src/pages/blog/[id].astro | |
| parent | a423c9b15bdf43d28390fb0424dfeec012d82828 (diff) | |
Refresh portfolio design and fonts
Diffstat (limited to 'src/pages/blog/[id].astro')
| -rw-r--r-- | src/pages/blog/[id].astro | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/pages/blog/[id].astro b/src/pages/blog/[id].astro index 935a796..3dc324a 100644 --- a/src/pages/blog/[id].astro +++ b/src/pages/blog/[id].astro @@ -1,5 +1,5 @@ --- -import Layout from "../../layouts/Layout.astro"; +import Layout from "@/layouts/Layout.astro"; import { getCollection, render } from "astro:content"; import { type GetStaticPaths } from "astro"; @@ -32,6 +32,7 @@ const schema = { "@type": "BlogPosting", headline: entry.data.title, datePublished: entry.data.publishedAt.toISOString(), + keywords: entry.data.tags || [], author: { "@type": "Person", name: "Ariel Costas Guerrero", @@ -39,7 +40,8 @@ const schema = { publisher: { "@type": "Person", name: "Ariel Costas Guerrero", - logo: { + url: "https://www.costas.dev", + image: { "@type": "ImageObject", url: "https://www.costas.dev/favicon.png", }, @@ -74,6 +76,10 @@ const schema = { </small> <Content /> + + <p> + <a href="/blog">Volver al blog</a> + </p> </Layout> <style lang="scss"> |
